This will be used by import-tree to pipe refs to write.
src/ostree/ot-builtin-unpack.c \
src/ostree/ot-builtin-rev-parse.c \
src/ostree/ot-builtin-show.c \
+ src/ostree/ot-builtin-write-refs.c \
src/ostree/ot-main.h \
src/ostree/ot-main.c \
$(NULL)
{ "remote", ostree_builtin_remote, 0 },
{ "show", ostree_builtin_show, 0 },
{ "unpack", ostree_builtin_unpack, 0 },
+ { "write-refs", ostree_builtin_write_refs, 0 },
{ NULL }
};
#include <glib/gi18n.h>
-static gboolean print_compose;
+static gboolean print_related;
static char* print_variant_type;
static char* print_metadata_key;
static GOptionEntry options[] = {
- { "print-compose", 0, 0, G_OPTION_ARG_NONE, &print_compose, "If given, show the branches which make up the given compose commit", NULL },
+ { "print-related", 0, 0, G_OPTION_ARG_NONE, &print_related, "If given, show the \"related\" commits", NULL },
{ "print-variant-type", 0, 0, G_OPTION_ARG_STRING, &print_variant_type, "If given, argument should be a filename and it will be interpreted as this type", NULL },
{ "print-metadata-key", 0, 0, G_OPTION_ARG_STRING, &print_metadata_key, "Print string value of metadata key KEY for given commit", "KEY" },
{ NULL }
}
static gboolean
-do_print_compose (OstreeRepo *repo,
+do_print_related (OstreeRepo *repo,
const char *rev,
const char *resolved_rev,
GError **error)
{
gboolean ret = FALSE;
- const char *branch;
- const char *branchrev;
+ const char *name;
+ ot_lvariant GVariant *csum_v = NULL;
ot_lvariant GVariant *variant = NULL;
- ot_lvariant GVariant *metadata = NULL;
- ot_lvariant GVariant *compose_contents = NULL;
- ot_lhash GHashTable *metadata_hash = NULL;
+ ot_lvariant GVariant *related = NULL;
GVariantIter *viter = NULL;
if (!ostree_repo_load_variant (repo, OSTREE_OBJECT_TYPE_COMMIT,
goto out;
/* PARSE OSTREE_SERIALIZED_COMMIT_VARIANT */
- metadata = g_variant_get_child_value (variant, 1);
- metadata_hash = ot_util_variant_asv_to_hash_table (metadata);
+ related = g_variant_get_child_value (variant, 2);
- compose_contents = g_hash_table_lookup (metadata_hash, "ostree-compose");
- if (!compose_contents)
- {
- g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
- "Commit %s does not have compose metadata key \"ostree-compose\"", resolved_rev);
- goto out;
- }
+ viter = g_variant_iter_new (related);
- g_variant_get_child (compose_contents, 0, "a(ss)", &viter);
- while (g_variant_iter_next (viter, "(&s&s)", &branch, &branchrev))
+ while (g_variant_iter_loop (viter, "(&s@ay)", &name, &csum_v))
{
- g_print ("%s %s\n", branch, branchrev);
+ ot_lfree char *checksum = ostree_checksum_from_bytes_v (csum_v);
+ g_print ("%s %s\n", name, checksum);
}
+ csum_v = NULL;
ret = TRUE;
out:
if (!do_print_metadata_key (repo, resolved_rev, print_metadata_key, error))
goto out;
}
- else if (print_compose)
+ else if (print_related)
{
if (!ostree_repo_resolve_rev (repo, rev, FALSE, &resolved_rev, error))
goto out;
- if (!do_print_compose (repo, rev, resolved_rev, error))
+ if (!do_print_related (repo, rev, resolved_rev, error))
goto out;
}
else if (print_variant_type)
--- /dev/null
+/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
+ *
+ * Copyright (C) 2011 Colin Walters <walters@verbum.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: Colin Walters <walters@verbum.org>
+ */
+
+#include "config.h"
+
+#include "ot-builtins.h"
+#include "ostree.h"
+
+#include <gio/gunixoutputstream.h>
+#include <gio/gunixinputstream.h>
+
+#include <glib/gi18n.h>
+
+static GOptionEntry options[] = {
+ { NULL }
+};
+
+gboolean
+ostree_builtin_write_refs (int argc, char **argv, GFile *repo_path, GError **error)
+{
+ GOptionContext *context;
+ gboolean ret = FALSE;
+ GCancellable *cancellable = NULL;
+ GError *temp_error = NULL;
+ gsize len;
+ ot_lobj OstreeRepo *repo = NULL;
+ ot_lobj GInputStream *instream = NULL;
+ ot_lobj GDataInputStream *datastream = NULL;
+ ot_lfree char *line = NULL;
+
+ context = g_option_context_new ("Import newline-separated pairs of REF REVISION");
+ g_option_context_add_main_entries (context, options, NULL);
+
+ if (!g_option_context_parse (context, &argc, &argv, error))
+ goto out;
+
+ repo = ostree_repo_new (repo_path);
+ if (!ostree_repo_check (repo, error))
+ goto out;
+
+ instream = (GInputStream*)g_unix_input_stream_new (0, FALSE);
+ datastream = g_data_input_stream_new (instream);
+
+ while ((line = g_data_input_stream_read_line (datastream, &len,
+ cancellable, &temp_error)) != NULL)
+ {
+ const char *spc = strchr (line, ' ');
+ ot_lfree char *ref = NULL;
+ ot_lfree guchar *rev = NULL;
+
+ if (!spc || spc == line)
+ {
+ g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
+ "Invalid ref input");
+ goto out;
+ }
+
+ ref = g_strndup (line, spc - line);
+ if (!ostree_validate_structureof_checksum_string (spc + 1, error))
+ goto out;
+
+ if (!ostree_repo_write_ref (repo, NULL, ref, spc + 1, error))
+ goto out;
+
+ g_free (line);
+ }
+ if (temp_error)
+ {
+ g_propagate_error (error, temp_error);
+ goto out;
+ }
+
+ ret = TRUE;
+ out:
+ if (context)
+ g_option_context_free (context);
+ return ret;
+}
gboolean ostree_builtin_rev_parse (int argc, char **argv, GFile *repo_path, GError **error);
gboolean ostree_builtin_remote (int argc, char **argv, GFile *repo_path, GError **error);
gboolean ostree_builtin_unpack (int argc, char **argv, GFile *repo_path, GError **error);
+gboolean ostree_builtin_write_refs (int argc, char **argv, GFile *repo_path, GError **error);
G_END_DECLS